4f792641fcbf5b08d57ad0c0caaa7448b2b45b6a,src/main/java/org/jboss/remoting3/remote/RemoteConnectionProvider.java,RemoteConnectionProvider,createConnection,#URI#InetSocketAddress#OptionMap#ChannelListener#,235
Before Change
}
protected IoFuture<StreamConnection> createConnection(final URI uri, final InetSocketAddress destination, final OptionMap connectOptions, final ChannelListener<StreamConnection> openListener) {
return xnioWorker.openStreamConnection(destination, openListener, connectOptions);
}
protected IoFuture<SslConnection> createSslConnection(final URI uri, final InetSocketAddress destination, final OptionMap connectOptions, final AuthenticationContext authenticationContext, final ChannelListener<StreamConnection> openListener) {
After Change
protected IoFuture<StreamConnection> createConnection(final URI uri, final InetSocketAddress bindAddress, final InetSocketAddress destination, final OptionMap connectOptions, final ChannelListener<StreamConnection> openListener) {
return bindAddress == null ?
xnioWorker.openStreamConnection(destination, openListener, connectOptions) :
xnioWorker.openStreamConnection(bindAddress, destination, openListener, null, connectOptions);
}